home *** CD-ROM | disk | FTP | other *** search
/ Tech Arsenal 1 / Tech Arsenal (Arsenal Computer).ISO / tek-04 / 422mods.zip / IQ1MOD.422 < prev    next >
Text File  |  1993-02-03  |  3KB  |  65 lines

  1. This is REALLY my first mod :)
  2. Iq1 #7 @15803
  3. Wed Feb 03 06:32:31 1993
  4. ┌────────────────────────────────────────────────────────────────────────────┐
  5. │                                                                            │
  6. │  Mod Name: IQ000001.MOD                 Mod Author: IQ1                    │
  7. │                                         IceNet    : 1 @ 5809               │
  8. │  Difficulty: HHAHAH Block READ!!!       WWIVlink  : 1 @ 15814              │
  9. │  Files Modified : BBS.C                                                    │
  10. │  WWIV Version   : 4.22, should work with 4.21a                             │
  11. │  Description    : Puts the Network Name in the Sub Prompt like this:       │
  12. │                                                                            │
  13. │                   [1] : [IceNet: ICENet Mods ONLY]:                        │
  14. │                                                                            │
  15. └────────────────────────────────────────────────────────────────────────────┘
  16.  
  17. Background:  HEY GUYS! My Very First Mod! Isn't it Terrific!!
  18.              This guy had written a mod similar to this for me, but I can't
  19.              get him to do it again, so I WROTE IT MYSELF! It's my first
  20.              mod that I released, I did one other which was WAY too simple
  21.              to send out, anyways, this mod is SOOOOOO EASY! But Just in
  22.              case, I didn't do it! Got it? Good! Let's get to the mod
  23.  
  24. Step 1    :  Back Up YOUR SOURCE! Even tho this is a simple mod, you can
  25.              still mess up :)
  26.  
  27. Step 2    :  Open Up BBS.C and look for
  28.  
  29.  
  30.   nl();
  31.   nl();
  32.   tleft(1);
  33.   npr("T - %s\r\n",ctim(nsl()));
  34.   s1[0]=0;
  35.   if (usub[cursub].subnum==-1) {
  36.     cursub=0;
  37.     if (usub[cursub].subnum==-1) {
  38.       strcpy(s1,get_string(16));
  39.     }
  40.   }
  41.  
  42.         Then after that add this:
  43.  
  44.   if (s1[0]==0)
  45.     if (net_sysnum || (net_num_max>1))
  46.        if (xsubs[usub[cursub].subnum].num_nets) {
  47.           ss=net_networks[xsubs[usub[cursub].subnum].nets[0].net_num].name;
  48.           sprintf(s1,"1[3%s1] [3%s1: 2%s1] 2:0",usub[cursub].keys,ss,subboards[usub[cursub].subnum].name);
  49.     } else {
  50.          sprintf(s1,"1[3%s1] [3Local1: 2%s1] 2:0",usub[cursub].keys,subboards[usub[cursub].subnum].name);
  51.     }
  52.  
  53.         Then GET RID OF EVERYTHING Up Until:
  54.  
  55.   prt(2,s1);
  56.   helpl=1;
  57.   s=mmkey(0);
  58.  
  59. Step 3: E-MAIL ME!!! PLEASE!!! This is my first mod, when you wrote your
  60.         first, wouldn't you have liked to get some feedback! Send me EMAIL!
  61.  
  62.  
  63.  
  64.  
  65.